crypto/internal/fips140/sha256.Digest.h (field)
57 uses
crypto/internal/fips140/sha256 (current package)
sha256.go#L46: h [8]uint32
sha256.go#L69: b = byteorder.BEAppendUint32(b, d.h[0])
sha256.go#L70: b = byteorder.BEAppendUint32(b, d.h[1])
sha256.go#L71: b = byteorder.BEAppendUint32(b, d.h[2])
sha256.go#L72: b = byteorder.BEAppendUint32(b, d.h[3])
sha256.go#L73: b = byteorder.BEAppendUint32(b, d.h[4])
sha256.go#L74: b = byteorder.BEAppendUint32(b, d.h[5])
sha256.go#L75: b = byteorder.BEAppendUint32(b, d.h[6])
sha256.go#L76: b = byteorder.BEAppendUint32(b, d.h[7])
sha256.go#L91: b, d.h[0] = consumeUint32(b)
sha256.go#L92: b, d.h[1] = consumeUint32(b)
sha256.go#L93: b, d.h[2] = consumeUint32(b)
sha256.go#L94: b, d.h[3] = consumeUint32(b)
sha256.go#L95: b, d.h[4] = consumeUint32(b)
sha256.go#L96: b, d.h[5] = consumeUint32(b)
sha256.go#L97: b, d.h[6] = consumeUint32(b)
sha256.go#L98: b, d.h[7] = consumeUint32(b)
sha256.go#L115: d.h[0] = init0
sha256.go#L116: d.h[1] = init1
sha256.go#L117: d.h[2] = init2
sha256.go#L118: d.h[3] = init3
sha256.go#L119: d.h[4] = init4
sha256.go#L120: d.h[5] = init5
sha256.go#L121: d.h[6] = init6
sha256.go#L122: d.h[7] = init7
sha256.go#L124: d.h[0] = init0_224
sha256.go#L125: d.h[1] = init1_224
sha256.go#L126: d.h[2] = init2_224
sha256.go#L127: d.h[3] = init3_224
sha256.go#L128: d.h[4] = init4_224
sha256.go#L129: d.h[5] = init5_224
sha256.go#L130: d.h[6] = init6_224
sha256.go#L131: d.h[7] = init7_224
sha256.go#L219: byteorder.BEPutUint32(digest[0:], d.h[0])
sha256.go#L220: byteorder.BEPutUint32(digest[4:], d.h[1])
sha256.go#L221: byteorder.BEPutUint32(digest[8:], d.h[2])
sha256.go#L222: byteorder.BEPutUint32(digest[12:], d.h[3])
sha256.go#L223: byteorder.BEPutUint32(digest[16:], d.h[4])
sha256.go#L224: byteorder.BEPutUint32(digest[20:], d.h[5])
sha256.go#L225: byteorder.BEPutUint32(digest[24:], d.h[6])
sha256.go#L227: byteorder.BEPutUint32(digest[28:], d.h[7])
sha256block.go#L82: h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
sha256block.go#L127: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7] = h0, h1, h2, h3, h4, h5, h6, h7